System V セマフォ
System V semaphore
code:c
int semget(key_t key, int nsems, int semflg);
int semctl(int semid, int semnum, int cmd, ...);
int semop(int semid, struct sembuf *sops, size_t nsops);
POSIX のマニュアルにも載っているが、XSI の範囲
関連
ipcs コマンドで状態を確認できる。
ipcmk コマンドでセマフォを作成できる。
ipcrm コマンドでセマフォを削除できる。